home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / 1994.11.gz / 1994.11 / 000160_feldman@ipxwf1.llnl.gov_Mon Nov 28 04:22:54 1994.msg < prev    next >
Internet Message Format  |  1994-11-30  |  11KB

  1. Received: from ipxwf1.llnl.gov by cs.umb.edu with SMTP id AA21645
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Mon, 28 Nov 1994 15:20:01 -0500
  3. Received: by ipxwf1.llnl.gov (4.1/LLNL-1.18)
  4.     id AA19443; Mon, 28 Nov 94 12:22:54 PST
  5. Date: Mon, 28 Nov 94 12:22:54 PST
  6. From: feldman@ipxwf1.llnl.gov (Mark Feldman LLNL )
  7. Message-Id: <9411282022.AA19443@ipxwf1.llnl.gov>
  8. To: tex-k@cs.umb.edu
  9. Subject: TeX installation on SUN OS 4.1.3
  10. Cc: feldman@ipxwf1.llnl.gov
  11.  
  12.  
  13. I am trying to install TeX and friends on SUN OS 4.1.3.
  14. The TeX installation seems to have gone ok, but I cannot
  15. get xdvik or dvipsk to install (they appear to compile ok).
  16.  
  17. When installing xdvik,
  18.  
  19.               : make install-exec
  20.  
  21. I get the following output:
  22.  
  23. for d in xdvik; do \
  24.   if test -d $d; then (cd $d; make  CFLAGS='-g -I/d2/usr -I/usr/openwin'
  25. SHELL='/bin/sh'  prefix=/d2/usr/tex exec_prefix=/d2/usr/tex  
  26. bindir=/d2/usr/tex/bin scriptdir=/d2/usr/tex/bin libdir=/d2/usr/tex/lib 
  27. datadir=/d2/usr/tex/lib infodir=/d2/usr/tex/info includedir=/d2/usr/tex/include
  28. manext=1 mandir=/d2/usr/tex/man/man1  texmf_prefix=/d2/usr/tex/lib/texmf  
  29. texinputdir=/d2/usr/tex/lib/texmf/tex mfinputdir=/d2/usr/tex/lib/texmf/mf  
  30. fontdir=/d2/usr/tex/lib/texmf/fonts  fmtdir=/d2/usr/tex/lib/texmf/ini
  31. basedir=/d2/usr/tex/lib/texmf/ini  texpooldir=/d2/usr/tex/lib/texmf/ini  
  32. mfpooldir=/d2/usr/tex/lib/texmf/ini  psfontdir=/d2/usr/tex/lib/texmf/fonts/adobe
  33. dvips_prefix=/d2/usr/tex/lib/texmf/dvips configdir=/d2/usr/tex/lib/texmf/dvips 
  34. headerdir=/d2/usr/tex/lib/texmf/dvips psmacrodir=/d2/usr/tex/lib/texmf/tex/dvips 
  35. default_texsizes='300:600'   install-exec); \
  36.   else true; fi; done
  37. make: Fatal error: Don't know how to make target `/config.h'
  38. Current working directory /d2/usr/tex/web2c-6.1/xdvik
  39. *** Error code 1
  40. make: Fatal error: Command failed for target `install-exec'
  41.  
  42.  
  43. Similarly for dvipsk.  My Makefile is included below.
  44. Any suggestions would be greatly appreciated.
  45.  
  46. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  47. ~ Mark Feldman                           ~                             ~
  48. ~ Lawrence Livermore National Laboratory ~ Phone:    510-423-6854      ~
  49. ~ P.O. Box 808  (M/S L-463)              ~ Fax:      510-423-3143      ~
  50. ~ Livermore, CA 94550                    ~ Internet: FELDMAN1@LLNL.GOV ~
  51. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  52.  
  53. ------------ start of Makefile ---------------------------------------------------
  54.  
  55. # Generated automatically from Makefile.in by configure.
  56. # Makefile for xdvik --kb@cs.umb.edu.
  57. version = 18d
  58.  
  59.  
  60. # See INSTALL for compilation options.
  61. DEFS = -DPS_GS $(XDEFS)
  62.  
  63.  
  64. # If your X include files or libraries won't be found automatically by
  65. # the compiler or linker, define these appropriately.  If you are
  66. # compiling with -DNOTOOL, set tool_libs="".
  67. x_cppflags = 
  68. x_ldflags = 
  69. x_r6_libs = 
  70. x_extra_libs =  -lnsl
  71. tool_libs = -lXaw -lXmu -lXt -lXext
  72. x_libs = $(x_ldflags) $(tool_libs) $(x_r6_libs) -lX11 $(x_extra_libs)
  73.  
  74. # We don't use alloca ourselves, but the X library might, and this way
  75. # we avoid the buggy versions in -lPW or -lucb.
  76. ALLOCA = alloca.o
  77.  
  78. objects = xdvi.o dvi_draw.o dvi_init.o events.o font-open.o gf.o pk.o   \
  79. psdps.o psgs.o psheader.o psnews.o special.o util.o vf.o sfDir.o        \
  80. sfDraw.o sfPath.o sfSelFile.o xgetcwd.o $(ALLOCA)
  81.  
  82. program = xdvi
  83.  
  84. default all: $(program) xdvi.1
  85. .PHONY: default
  86. .PHONY: all
  87.  
  88. $(program): $(kpathsea) $(objects)
  89.     $(link_command) $(x_lib_flags) $(objects) $(LOADLIBES)
  90.  
  91. squeeze: squeeze.o
  92.     $(link_command) squeeze.o
  93.  
  94. psheader.c: psheader.txt squeeze
  95.     ./squeeze $(srcdir)/psheader.txt $@
  96.  
  97. xdvi.1: xdvi.man sedscript
  98.     sed -f sedscript <$(srcdir)/xdvi.man >$@
  99.  
  100. sedscript: mksedscript
  101.     $(SHELL) $(srcdir)/mksedscript pkpath sizes vfpath $(DEFS) >$@
  102.  
  103.  
  104. install: install-exec install-data
  105. uninstall: uninstall-exec uninstall-data
  106.  
  107. install-exec: $(program) install-MakeTeXPK
  108.     $(SHELL) $(top_srcdir)/../mkdirchain $(bindir)
  109.     $(INSTALL_PROGRAM) $(program) $(bindir)/$(program)
  110. uninstall-exec:
  111.     rm -f $(bindir)/$(program)
  112.  
  113. install-data: xdvi.1
  114.     $(SHELL) $(top_srcdir)/../mkdirchain $(mandir)
  115.     $(INSTALL_DATA) xdvi.1 $(mandir)/xdvi.$(manext)
  116. uninstall-data:
  117.     rm -f $(mandir)/xdvi.$(manext)
  118.  
  119.  
  120. distname = xdvik
  121. program_files = xdvi.icon xdvi.man psheader.txt mksedscript
  122. version_files = patchlevel.h
  123.  
  124. pre-dist-$(distname):
  125. post-dist-$(distname):
  126.     cd $(top_distdir); rm -f xdvik/psheader.c
  127.  
  128.  
  129. info dvi check:
  130.  
  131.  
  132. distclean::
  133.     rm -f psheader.c sedscript xdvi.1
  134.  
  135. alloca.o : alloca.c 
  136. dvi_draw.o : dvi_draw.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  137.   $(kpathsea_dir)/c-unistd.h \
  138.   $(kpathsea_dir)/systypes.h \
  139.   $(kpathsea_dir)/c-memstr.h \
  140.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  141.   $(kpathsea_dir)/c-proto.h \
  142.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  143.   xdvi.h \
  144.   $(kpathsea_dir)/c-ctype.h \
  145.   $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/c-vararg.h dvi.h 
  146. dvi_init.o : dvi_init.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  147.   $(kpathsea_dir)/c-unistd.h \
  148.   $(kpathsea_dir)/systypes.h \
  149.   $(kpathsea_dir)/c-memstr.h \
  150.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  151.   $(kpathsea_dir)/c-proto.h \
  152.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  153.   xdvi.h \
  154.   $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/c-stat.h \
  155.   $(kpathsea_dir)/magstep.h $(kpathsea_dir)/tex-glyph.h $(kpathsea_dir)/tex-file.h dvi.h 
  156. events.o : events.c ./config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  157.   $(kpathsea_dir)/c-unistd.h \
  158.   $(kpathsea_dir)/systypes.h \
  159.   $(kpathsea_dir)/c-memstr.h \
  160.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  161.   $(kpathsea_dir)/c-proto.h \
  162.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  163.   ./xdvi.h 
  164. font-open.o : font-open.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  165.   $(kpathsea_dir)/c-unistd.h \
  166.   $(kpathsea_dir)/systypes.h \
  167.   $(kpathsea_dir)/c-memstr.h \
  168.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  169.   $(kpathsea_dir)/c-proto.h \
  170.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  171.   xdvi.h \
  172.   $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/tex-glyph.h $(kpathsea_dir)/tex-file.h 
  173. gf.o : gf.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  174.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  175.   $(kpathsea_dir)/c-memstr.h \
  176.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  177.   $(kpathsea_dir)/c-proto.h \
  178.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  179.   xdvi.h 
  180. pk.o : pk.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  181.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  182.   $(kpathsea_dir)/c-memstr.h \
  183.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  184.   $(kpathsea_dir)/c-proto.h \
  185.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  186.   xdvi.h 
  187. psdps.o : psdps.c 
  188. psgs.o : psgs.c 
  189. psheader.o : psheader.c 
  190. psnews.o : psnews.c 
  191. sfDir.o : sfDir.c \
  192.   sfinternal.h \
  193.   $(kpathsea_dir)/config.h ./c-auto.h \
  194.   $(kpathsea_dir)/c-std.h \
  195.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  196.   $(kpathsea_dir)/c-memstr.h $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h \
  197.   $(kpathsea_dir)/c-limits.h \
  198.   $(kpathsea_dir)/c-proto.h $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  199.   $(kpathsea_dir)/c-dir.h \
  200.   $(kpathsea_dir)/c-stat.h 
  201. sfDraw.o : sfDraw.c $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  202.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  203.   $(kpathsea_dir)/c-memstr.h \
  204.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  205.   $(kpathsea_dir)/c-proto.h \
  206.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h $(kpathsea_dir)/c-stat.h \
  207.   sfinternal.h 
  208. sfPath.o : sfPath.c \
  209.   $(kpathsea_dir)/config.h \
  210.   ./c-auto.h $(kpathsea_dir)/c-std.h \
  211.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  212.   $(kpathsea_dir)/c-memstr.h \
  213.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  214.   $(kpathsea_dir)/c-proto.h \
  215.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h $(kpathsea_dir)/c-stat.h \
  216.   sfinternal.h 
  217. sfSelFile.o : sfSelFile.c \
  218.   sfinternal.h 
  219. special.o : special.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  220.   $(kpathsea_dir)/c-unistd.h \
  221.   $(kpathsea_dir)/systypes.h \
  222.   $(kpathsea_dir)/c-memstr.h \
  223.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  224.   $(kpathsea_dir)/c-proto.h \
  225.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  226.   xdvi.h \
  227.   $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/c-ctype.h \
  228.   $(kpathsea_dir)/line.h $(kpathsea_dir)/tex-file.h 
  229. squeeze.o : squeeze.c 
  230. util.o : util.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  231.   $(kpathsea_dir)/c-unistd.h \
  232.   $(kpathsea_dir)/systypes.h \
  233.   $(kpathsea_dir)/c-memstr.h \
  234.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  235.   $(kpathsea_dir)/c-proto.h \
  236.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  237.   xdvi.h \
  238.   $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/c-vararg.h 
  239. vf.o : vf.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  240.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  241.   $(kpathsea_dir)/c-memstr.h \
  242.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  243.   $(kpathsea_dir)/c-proto.h \
  244.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  245.   xdvi.h \
  246.   dvi.h 
  247. xdvi.o : xdvi.c config.h $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  248.   $(kpathsea_dir)/c-unistd.h \
  249.   $(kpathsea_dir)/systypes.h \
  250.   $(kpathsea_dir)/c-memstr.h \
  251.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  252.   $(kpathsea_dir)/c-proto.h \
  253.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h \
  254.   xdvi.h \
  255.   c-openmx.h $(kpathsea_dir)/c-fopen.h $(kpathsea_dir)/c-ctype.h \
  256.   $(kpathsea_dir)/proginit.h $(kpathsea_dir)/progname.h $(kpathsea_dir)/tex-file.h patchlevel.h \
  257.   xdvi.icon 
  258. xgetcwd.o : xgetcwd.c $(kpathsea_dir)/config.h ./c-auto.h $(kpathsea_dir)/c-std.h \
  259.   $(kpathsea_dir)/c-unistd.h $(kpathsea_dir)/systypes.h \
  260.   $(kpathsea_dir)/c-memstr.h \
  261.   $(kpathsea_dir)/c-errno.h $(kpathsea_dir)/c-minmax.h $(kpathsea_dir)/c-limits.h \
  262.   $(kpathsea_dir)/c-proto.h \
  263.   $(kpathsea_dir)/lib.h $(kpathsea_dir)/types.h $(kpathsea_dir)/debug.h $(kpathsea_dir)/c-pathmx.h 
  264.  
  265.  
  266. -------------- end of Makefile -----------------------------------------------------------------------
  267.